home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / DF / Kap_1 / Menu.dxr / 00004_Najezd male menu.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  805 b   |  33 lines

  1. property Tlacitko, Znacka
  2.  
  3. on getPropertyDescriptionList
  4.   set description to [:]
  5.   addProp(description, #Znacka, [#comment: "Znacka:", #format: #string, #default: EMPTY])
  6.   return description
  7. end
  8.  
  9. on getBehaviorDescription
  10.   return "N├íjezd a klik"
  11. end
  12.  
  13. on mouseEnter me
  14.   puppetSound(1, "Najezd")
  15.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  16.   set Tlacitko to the castNum of sprite the spriteNum of me
  17.   set the member of sprite the spriteNum of me to member (Tlacitko + 1)
  18. end
  19.  
  20. on mouseLeave me
  21.   set the cursor of sprite the spriteNum of me to -1
  22.   set the member of sprite the spriteNum of me to member Tlacitko
  23. end
  24.  
  25. on mouseDown me
  26.   puppetSound(1, "Klik")
  27.   set the member of sprite the spriteNum of me to member Tlacitko
  28. end
  29.  
  30. on mouseUp me
  31.   go(Znacka)
  32. end
  33.